home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / circuits / irsim-9.000 / irsim-9 / src / anaNO / ana.c next >
C/C++ Source or Header  |  1993-01-15  |  2KB  |  72 lines

  1. /* 
  2.  *     ********************************************************************* 
  3.  *     * Copyright (C) 1988, 1990 Stanford University.                     * 
  4.  *     * Permission to use, copy, modify, and distribute this              * 
  5.  *     * software and its documentation for any purpose and without        * 
  6.  *     * fee is hereby granted, provided that the above copyright          * 
  7.  *     * notice appear in all copies.  Stanford University                 * 
  8.  *     * makes no representations about the suitability of this            * 
  9.  *     * software for any purpose.  It is provided "as is" without         * 
  10.  *     * express or implied warranty.  Export of this software outside     * 
  11.  *     * of the United States of America may require an export license.    * 
  12.  *     ********************************************************************* 
  13.  */
  14.  
  15. #include <stdio.h>
  16. #include "defs.h"
  17. #include "net.h"
  18.  
  19.  
  20. extern void lprintf();
  21.  
  22.  
  23. typedef long  TimeType;
  24.  
  25.  
  26. public int AddNode( nd, flag )
  27.   nptr  nd;
  28.   int   *flag;
  29.   {
  30.     return( 1 );
  31.   }
  32.  
  33. public int AddVector( vec, flag )
  34.   bptr  vec;
  35.   int   *flag;
  36.   {
  37.     return( 1 );
  38.   }
  39.  
  40. public void DisplayTraces( isMapped )  int  isMapped;  {}
  41.  
  42. public void StopAnalyzer()  {}
  43.  
  44. public void RestartAnalyzer( first_time, last_time, same_hist )
  45.   long  first_time, last_time;
  46.   int   same_hist;
  47.   {}
  48.  
  49. public void ClearTraces() {}
  50.  
  51. public void RemoveVector( b )  bptr  b; {}
  52.  
  53. public void RemoveNode( n )  nptr  n; {}
  54.  
  55. public void RemoveAllDeleted()  {}
  56.  
  57. public void UpdateWindow( endT ) TimeType  endT;  {}
  58.  
  59. public void TerminateAnalyzer() {}
  60.  
  61. public int InitDisplay( fname, display_unit )
  62.   char  *fname;
  63.   char  *display_unit;
  64.   {
  65.     (void) lprintf( stdout, "No analyzer in this version\n" );
  66.     return( FALSE );
  67.   }
  68.  
  69. public void InitTimes( firstT, stepsize, lastT )
  70.   TimeType  firstT, stepsize, lastT;
  71.   {}
  72.